home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000167_fdc@columbia.edu_Sun Oct 16 12:26:04 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: ftp mput /recursive problem....
  5. Date: 16 Oct 2005 16:25:41 GMT
  6. Organization: Columbia University
  7. Lines: 87
  8. Message-ID: <slrndl4vo5.mfv.fdc@sesame.cc.columbia.edu>
  9. References: <dip2gm$ci$1$8300dec7@news.demon.co.uk> <slrndl29i0.ldi.fdc@sesame.cc.columbia.edu> <dirqev$7j$1$830fa7a5@news.demon.co.uk>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1129479941 2606 128.59.59.56 (16 Oct 2005 16:25:41 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 16 Oct 2005 16:25:41 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15410
  17.  
  18. On 2005-10-15, John Hackett <john.hackett@icon-is.co.uk> wrote:
  19. : [Is this useful:
  20. : 211-Features:
  21. :   MDTM
  22. :   REST STREAM
  23. :   SIZE
  24. : 211 End
  25. :    Server does not support AUTH
  26. :    Server does not support LANG
  27. :    Server does not support MDTM
  28. :
  29. This means that if you want to update only those files that changed
  30. since last time, you can't do it because the server won't tell you a
  31. file's modification time.  Wasn't this the whole point of your project?
  32. Can you get a better ftp server for the far end?
  33.  
  34. :    Server does not support MLST
  35. :    Server does not support PBSZ
  36. :    Server does not support PROT
  37. :    Server supports REST
  38. :    Server does not support SIZE
  39. :    Server does not support TVFS
  40. :    Server does not support UTF8 ]
  41. :
  42. : It seems to be a very specific issue as when I went through the listfile 
  43. : and the files transferred the problem occurs in exactly the same place 
  44. : each time.
  45. :
  46. :> First, the large number of files.  Do the same things happen if you set up
  47. :> a similar scenario but with a much smaller number of files?
  48. :
  49. : No. I set up a smaller test with files in a tree and that worked fine. 
  50. : It also worked - as far as I can tell - on a much larger directory (2667 
  51. : files) but fails on a larger one (8200 files).
  52. :
  53. So there is a number at which it begins to fail, but below which it does not
  54. fail?  I wonder what the number is.  Maybe a power of two (perhaps plus or
  55. minus one)?  4095, 4096, 4097, 8191, 8192, 8193?  You've already increased
  56. Kermit's stringspace, does increasing it more make a difference?
  57.  
  58. : It is hard to know how much detail to give. The files DO transfer. What 
  59. : happens is that the directory structure gets messed up so the expected 
  60. : number of files/directories at a particular level is not correct and you 
  61. : have to see where the files have been written.
  62. :
  63. : LISTFILE:
  64. :
  65. : profile/Application Data/Skype/sarah_hac/user1024.dbb
  66. : profile/Application Data/Skype/sarah_hac/contactgroup256.dbb
  67. : profile/Application Data/Skype/sarah_hac/call256.dbb
  68. : profile/Application Data/Skype/sarah_hac/config.lck
  69. : profile/Application Data/Skype/sarah_hac/chat512.dbb
  70. : profile/Application Data/Skype/sarah_hac/chatmsg256.dbb
  71. : profile/Application Data/Skype/sarah_hac/index2.dat
  72. :
  73. : ---ALL OK UP TO HERE
  74. :
  75. : --- This is where KERMIT misses a beat and creates dir "Real" under 
  76. : "Skype" instead if the directory above...
  77. :
  78. : profile/Application Data/Real/rnadmin/rnsystem.dat
  79. : profile/Application Data/Real/RealPlayer/db/Backup/iscomplete
  80. : profile/Application Data/Real/RealPlayer/db/TRACKS.DBF
  81. : profile/Application Data/Real/RealPlayer/db/PLAYTRAX.CDX
  82. : profile/Application Data/Real/RealPlayer/db/TRAKINFO.DBF
  83. : profile/Application Data/Real/RealPlayer/db/CD.DBF
  84. :
  85. : FROM DEBUG:
  86. :
  87. : HERE IS THE ERROR:
  88. : 257 "/mirror/sarah/profile/Application Data/Skype/Real" - Directory 
  89. : successfully created
  90. : 257 "/mirror/sarah/profile/Application Data/Skype/Real/rnadmin" - 
  91. : Directory successfully created
  92. : ...
  93. : 257 "/mirror/sarah/profile/Application Data/Skype/Real/RealPlayer" - 
  94. : Directory successfully created
  95. : 257 "/mirror/sarah/profile/Application Data/Skype/Real/RealPlayer/db" - 
  96. : Directory successfully created
  97. : 257 "/mirror/sarah/profile/Application
  98. : ...
  99. :
  100. Well these are all messages from the server.  Do you have the messages 
  101. that Kermit sent to the server at this point?  That would pin down the
  102. culprit.
  103.  
  104. - Frank